home *** CD-ROM | disk | FTP | other *** search
/ Core Concepts in Art 2 / Core Concepts in Art (Frames of Reference)(The McGraw-Hill Companies)(2004).iso / mac / media / quiz.swf / scripts / DefineButton2_73 / BUTTONCONDACTION on(release).as next >
Text File  |  2003-10-12  |  421b  |  17 lines

  1. on(release){
  2.    i = 0;
  3.    while(i <= _root.howManyChapters)
  4.    {
  5.       _parent["incorrectChapt" + i] = undefined;
  6.       if(i > _root.dropChapters - 1)
  7.       {
  8.          _parent.quiz1_mc["chapter" + i].arrow_mc._visible = 0;
  9.          _parent.quiz1_mc["chapter" + i].chapter_txt._alpha = 50;
  10.       }
  11.       i++;
  12.    }
  13.    _parent.quiz1_mc._visible = 1;
  14.    _parent.quiz2_mc._visible = 0;
  15.    this._visible = 0;
  16. }
  17.